常用事件
| 事件 | 说明 | Demo |
|---|---|---|
| visibilitychange | document 浏览器页面切换 | Image Carousel 2 |
| transitionend | 元素过渡结束 | Image Carousel 2 |
| keypress | 键盘输入的时候,比如监听input输入框,event.key === 'Enter' | |
| keyup | 如果一直按着enter键,在keypress下会一直触发,为了只相应一次使用keyup会好一些 | |
吖冼的Blog| 事件 | 说明 | Demo |
|---|---|---|
| visibilitychange | document 浏览器页面切换 | Image Carousel 2 |
| transitionend | 元素过渡结束 | Image Carousel 2 |
| keypress | 键盘输入的时候,比如监听input输入框,event.key === 'Enter' | |
| keyup | 如果一直按着enter键,在keypress下会一直触发,为了只相应一次使用keyup会好一些 | |